This will show the last time visit info.

=======================================================

<?php
//set cookie for three month
$timeframe = 90 * 60 * 24 * 60 + time();
setcookie('lastVisit', date("G:i - m/d/y"), $timeframe);
if(isset($_COOKIE['lastVisit']))
	$visit = $_COOKIE['lastVisit'];
else
	echo "Welcome to out web page!";
echo "Your have visited last time at- ". $visit;
?>
